home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Add-On
/
Workbench Add-On - Volume 1.iso
/
DiskUtil
/
CD-ROM
/
JukeBox
/
fwd.jb
< prev
next >
Wrap
Text File
|
1995-08-23
|
483b
|
23 lines
/* skip to next track */
/* (c) copyright 1992,93 by F.J. Reichert */
options results;
options failat 11;
toc stem a.;
if rc = 0 then do;
current track;
toset = result + 1;
/* if there are tracks, skip to next */
if toset < a.0 then do;
set track toset;
end;
/* else move to last logical block */
else do;
current cdtime;
parse value result with mins':'secs':'frames;
endblock = (mins * 60 + secs) * 75 + frames - 150 - 1;
set block endblock;
end;
end;
exit(0);